-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
agent: fix panic when logging about protocol version config use. #12962
Conversation
The log line comes before the agent logger has been setup, therefore we need to use the UI logging to avoid panic.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ugh, not sure how I missed this in #11600. I suppose the other references to c.Ui
throughout this method really should be a strong enough hint to folks about how to log.
Thanks for fixing this up so quickly.
I'm going to lock this pull request because it has been closed for 120 days ⏳. This helps our maintainers find and focus on the active contributions. |
The log line comes before the agent logger has been setup,
therefore we need to use the UI logging to avoid panic.